home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
util
/
gnu
/
emacs_src.lha
/
src
/
amiga
/
emacs-18.59
/
unix
/
include
/
grp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-07-08
|
296b
|
13 lines
#ifndef _GRP_H
#define _GRP_H
struct group {
char *gr_name; /* name of the group */
char *gr_passwd; /* encrypted password of the group */
gid_t gr_gid; /* numerical group ID */
char **gr_mem; /* null-terminated array of pointers to the
individual member names */
};
#endif